ShowFlash
ShowFlash FlashId
 
Parameters:

    FlashId=The Id of the Flash movie
Returns: NONE
 

ShowFlash displays a Flash movie previously hidden with the HideFlash command.


  
; include the flash library
  #Include "PBFlash.pba"
  
; load a flash movie and display it
  LoadFlash CurrentDir$() + example.swf", 1, 0, 30
  
; Ask the user to press a key in order to hide the movie
  Text 00"Press a key to hide the movie"
  Sync
  WaitKey
  HideFlash 1
  WaitNoKey
  
; Ask the user to show it again
  Text 020"Press a key again to show the movie"
  Sync
  WaitKey
  ShowFlash 1
  WaitNoKey
  
  WaitKey
  
  

 
Related Info: :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com